testing.common.output (field)
25 uses
testing (current package)
benchmark.go#L249: fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), b.name, b.output)
benchmark.go#L262: if b.chatty != nil && (len(b.output) > 0 || finished) {
benchmark.go#L264: fmt.Fprintf(b.w, "%s--- %s: %s\n%s", b.chatty.prefix(), tag, b.name, b.output)
benchmark.go#L752: fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
benchmark.go#L765: if len(b.output) > 0 {
benchmark.go#L767: fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
benchmark.go#L882: for nlCount, j := 0, 0; j < len(b.output); j++ {
benchmark.go#L883: if b.output[j] == '\n' {
benchmark.go#L886: b.output = append(b.output[:j], "\n\t... [output truncated]\n"...)
testing.go#L627: output []byte // Output generated by test or benchmark.
testing.go#L848: if len(c.output) > 0 {
testing.go#L853: args = append(args[:len(args):len(args)], c.output)
testing.go#L854: c.output = c.output[:0]
testing.go#L896: w.c.output = append(w.c.output, marker)
testing.go#L900: w.c.output = append(w.c.output, indent...)
testing.go#L901: w.c.output = append(w.c.output, line...)
testing.go#L1060: parent.output = append(parent.output, parent.decorate(s, depth+1)...)
testing.go#L1077: c.output = append(c.output, c.decorate(s, depth+1)...)